home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / rpg / crossfir.001 / crossfir~ / eutl / xmalloc / xmalloc.h < prev   
C/C++ Source or Header  |  1994-01-14  |  325b  |  16 lines

  1. #ifndef __xmalloc_h
  2. #define __xmalloc_h
  3.  
  4. #include <errlib.h>
  5. /* xmalloc uses the errlib stuff */
  6.  
  7. extern char *xmalloc_packagever;
  8. extern char *xmalloc_Enomem;
  9.  
  10. void *xmalloc(unsigned long size);
  11. void *xbzmalloc(unsigned long size);
  12. void *xrealloc(void *,unsigned long size);
  13. void xmalloc_seterf(ErrorFunction nerf);
  14.  
  15. #endif
  16.